home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 24 / PC Gamer IT CD 24 2-2.iso / DESK95 / search / SEARCH32.EX_ / SEARCH32.EX / 0 / RCDATA / TFORMBROWSE / TFORMBROWSE.txt
Text File  |  1997-03-15  |  3KB  |  170 lines

  1. object FormBrowse: TFormBrowse
  2.   Left = 203
  3.   Top = 123
  4.   HelpContext = 11
  5.   BorderStyle = bsDialog
  6.   Caption = 'Add Files To Be Indexed'
  7.   ClientHeight = 302
  8.   ClientWidth = 420
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OnActivate = FormActivate
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object txtFileNames: TEdit
  19.     Left = -1
  20.     Top = 0
  21.     Width = 420
  22.     Height = 21
  23.     TabOrder = 0
  24.   end
  25.   object pnlBrowse: TPanel
  26.     Left = 0
  27.     Top = 20
  28.     Width = 420
  29.     Height = 251
  30.     TabOrder = 1
  31.     object lblFolders: TLabel
  32.       Left = 10
  33.       Top = 7
  34.       Width = 37
  35.       Height = 13
  36.       Caption = 'Fo&lders:'
  37.     end
  38.     object lblFiles: TLabel
  39.       Left = 215
  40.       Top = 7
  41.       Width = 24
  42.       Height = 13
  43.       Caption = '&Files:'
  44.     end
  45.     object lblDrive: TLabel
  46.       Left = 10
  47.       Top = 151
  48.       Width = 28
  49.       Height = 13
  50.       Caption = '&Drive:'
  51.     end
  52.     object lblFileTypes: TLabel
  53.       Left = 215
  54.       Top = 151
  55.       Width = 90
  56.       Height = 13
  57.       Caption = 'File &types to select:'
  58.     end
  59.     object dirFolders: TDirectoryListBox
  60.       Left = 10
  61.       Top = 22
  62.       Width = 195
  63.       Height = 120
  64.       ItemHeight = 16
  65.       TabOrder = 0
  66.       OnClick = dirFoldersClick
  67.     end
  68.     object filFiles: TFileListBox
  69.       Left = 215
  70.       Top = 22
  71.       Width = 195
  72.       Height = 120
  73.       ItemHeight = 13
  74.       MultiSelect = True
  75.       TabOrder = 1
  76.     end
  77.     object drvDrive: TDriveComboBox
  78.       Left = 10
  79.       Top = 166
  80.       Width = 195
  81.       Height = 19
  82.       TabOrder = 2
  83.       OnChange = drvDriveChange
  84.     end
  85.     object cmbFileTypes: TComboBox
  86.       Left = 215
  87.       Top = 166
  88.       Width = 195
  89.       Height = 21
  90.       ItemHeight = 13
  91.       TabOrder = 3
  92.       OnChange = cmbFileTypesChange
  93.       OnClick = cmbFileTypesClick
  94.     end
  95.     object cmdAddFolder: TButton
  96.       Left = 174
  97.       Top = 207
  98.       Width = 74
  99.       Height = 22
  100.       Caption = '&Add Folder'
  101.       TabOrder = 4
  102.       OnClick = cmdAddFolderClick
  103.     end
  104.     object cmdAddFiles: TButton
  105.       Left = 254
  106.       Top = 207
  107.       Width = 74
  108.       Height = 22
  109.       Caption = 'A&dd Files'
  110.       TabOrder = 5
  111.       OnClick = cmdAddFilesClick
  112.     end
  113.     object chkSubfolders: TCheckBox
  114.       Left = 32
  115.       Top = 201
  116.       Width = 97
  117.       Height = 14
  118.       Caption = 'With &Subfolders'
  119.       State = cbChecked
  120.       TabOrder = 6
  121.     end
  122.     object chkExclude: TCheckBox
  123.       Left = 32
  124.       Top = 222
  125.       Width = 112
  126.       Height = 15
  127.       Caption = '&Exclude From Index'
  128.       TabOrder = 7
  129.     end
  130.     object Button1: TButton
  131.       Left = 334
  132.       Top = 207
  133.       Width = 74
  134.       Height = 22
  135.       Caption = '&Clear All'
  136.       TabOrder = 8
  137.       OnClick = Button1Click
  138.     end
  139.   end
  140.   object cmdOK: TButton
  141.     Left = 173
  142.     Top = 277
  143.     Width = 75
  144.     Height = 22
  145.     Caption = 'OK'
  146.     Default = True
  147.     TabOrder = 2
  148.     OnClick = cmdOKClick
  149.   end
  150.   object cmdCancel: TButton
  151.     Left = 253
  152.     Top = 277
  153.     Width = 75
  154.     Height = 22
  155.     Cancel = True
  156.     Caption = 'Cancel'
  157.     TabOrder = 3
  158.     OnClick = cmdCancelClick
  159.   end
  160.   object cmdHelp: TButton
  161.     Left = 333
  162.     Top = 277
  163.     Width = 75
  164.     Height = 22
  165.     Caption = '&Help'
  166.     TabOrder = 4
  167.     OnClick = cmdHelpClick
  168.   end
  169. end
  170.